home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 2003 August
/
MW 8 2003 CD1.iso
/
Inside Macworld
/
Product News
/
gimp-1.2.4.sit
/
gimp-1.2.4
/
plug-ins
/
perl
/
perl-intl.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2001-11-05
|
306 b
|
18 lines
#ifndef ENABLE_NLS
# ifdef HAVE_LIBINTL_H
# define ENABLE_NLS
# endif
#endif
#ifdef ENABLE_NLS
# include <libintl.h>
#else
# define gettext(s) (char *) (s)
# define dgettext(d,s) (char *) (s)
# define textdomain(d) (d)
# define bindtextdomain(d,p) (p)
#endif
#define __(s) gettext (s)
#define N_(s) (s)